Undocumented functions of NTDLL

2OO4, 6 October


OBJECT_BASIC_INFORMATION
OBJECT_BASIC_INFORMATION

typedef struct _OBJECT_BASIC_INFORMATION {

ULONG Attributes; ACCESS_MASK DesiredAccess; ULONG HandleCount; ULONG ReferenceCount; ULONG PagedPoolUsage; ULONG NonPagedPoolUsage; ULONG Reserved[3]; ULONG NameInformationLength; ULONG TypeInformationLength; ULONG SecurityDescriptorLength; LARGE_INTEGER CreationTime; } OBJECT_BASIC_INFORMATION, *POBJECT_BASIC_INFORMATION;



Structure OBJECT_BASIC_INFORMATION is returned in a result of call NtQueryObject with ObjectBasicInformation information class.
Requirements:
Library: ntdll.lib


See also:
NtQueryObject
OBJECT_INFORMATION_CLASS